@IN'est pas du Domaine Publique. Tous Droits Réservés.
Traduit par Fabien Larini le 02/08/93.
Ce Génie redimensionne taille de caractères du texte d'une boîte ou d'une
chaîne de boîtes. Il applique pour cela un pourcentage à la taille des
caractères.
*/
/* This Genie resizes text by a percentage factor, keeping the proportions of differing sizes of text in a box. All the text in a box or linked chain will be changed.
Written by Don Cox. Not Public Domain. All rights reserved. */
trace n
signal on error
signal on syntax
address command
call SafeEndEdit.rexx()
call ppm_AutoUpdate(0)
cr="0a"x
cpage = ppm_CurrentPage()
counter=0
do forever
box=ppm_ClickOnBox("Clickez dans les Boîtes où le Texte doit être Redimensionné")
if box=0 then break
counter=counter+1
boxes.counter=box
call ppm_SelectBox(box)
end
if counter=0 then exit_msg("Pas de Boîte Sélectionnée")
percent = ppm_GetUserText(8,"Pourcentage de l'Ancienne Taille")
if percent = "" then exit_msg("Abandon Utilisateur")
if ~(datatype(percent,n)) then exit_msg("Saisie Invalide du Pourcentage")